golang.org/x/net/http2.roundRobinWriteScheduler.head (field)

12 uses

	golang.org/x/net/http2 (current package)
		writesched_roundrobin.go#L21: 	head *writeQueue
		writesched_roundrobin.go#L45: 	if ws.head == nil {
		writesched_roundrobin.go#L46: 		ws.head = q
		writesched_roundrobin.go#L52: 		q.prev = ws.head.prev
		writesched_roundrobin.go#L53: 		q.next = ws.head
		writesched_roundrobin.go#L66: 		ws.head = nil
		writesched_roundrobin.go#L70: 		if ws.head == q {
		writesched_roundrobin.go#L71: 			ws.head = q.next
		writesched_roundrobin.go#L104: 	if ws.head == nil {
		writesched_roundrobin.go#L107: 	q := ws.head
		writesched_roundrobin.go#L110: 			ws.head = q.next
		writesched_roundrobin.go#L114: 		if q == ws.head {